home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / SWAPP.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  134 b   |  10 lines

  1. // util.lib function swap_p()
  2.  
  3. void swap_p(int *num1,int *num2)
  4. {
  5.     int temp;
  6.  
  7.     temp = *num1;
  8.     *num1 = *num2;
  9.     *num2 = temp;
  10. }